home *** CD-ROM | disk | FTP | other *** search
/ Champak 50 / Volume 50 - JOGO DISK .iso / Games / mallcrawl.swf / scripts / __Packages / mx / transitions / easing / None.as next >
Encoding:
Text File  |  2007-09-28  |  435 b   |  24 lines

  1. class mx.transitions.easing.None
  2. {
  3.    static var version = "1.1.0.52";
  4.    function None()
  5.    {
  6.    }
  7.    static function easeNone(t, b, c, d)
  8.    {
  9.       return c * t / d + b;
  10.    }
  11.    static function easeIn(t, b, c, d)
  12.    {
  13.       return c * t / d + b;
  14.    }
  15.    static function easeOut(t, b, c, d)
  16.    {
  17.       return c * t / d + b;
  18.    }
  19.    static function easeInOut(t, b, c, d)
  20.    {
  21.       return c * t / d + b;
  22.    }
  23. }
  24.